home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / WWW / Perl_WWW_Utilities / MHonArc / install.cfg < prev    next >
Encoding:
Text File  |  1995-12-28  |  1.8 KB  |  69 lines

  1. ##---------------------------------------------------------------------------##
  2. ##  File:
  3. ##      install.cfg
  4. ##  Description:
  5. ##    This is a sample configuration file for install.me for
  6. ##    non-interactive use.  This allows you to install the program
  7. ##    in batch mode.  To invoke install.me in batch mode, just
  8. ##    specify the configuration file on the command-line:
  9. ##
  10. ##        perl install.me install.cfg
  11. ##
  12. ##    This file is Perl code, and therefore, must follow Perl syntax
  13. ##    rules:
  14. ##
  15. ##        o Anything following a '#' character is ignored.
  16. ##
  17. ##        o Strings values need to be enclosed in quotes.
  18. ##
  19. ##        o If you need to use a backslash in a string value,
  20. ##          it must be escaped with a backslash.  Example:
  21. ##
  22. ##          'C:\\LIB\\MHONARC'.
  23. ##          
  24. ##          The same applies to the '$' character.
  25. ##
  26. ##        o All statements must end with a semi-colon: ;
  27. ##
  28. ##  Notes:
  29. ##    o  Paths specified in the configuration file should exist.
  30. ##       install.me will not automatically create them as it does
  31. ##       in interactive mode.
  32. ##
  33. ##---------------------------------------------------------------------------##
  34.  
  35. # Should executables be installed. 0 => NO, non-zero => YES.
  36. #
  37. $dobin = 1;
  38.  
  39. # Should libraries be installed. 0 => NO, non-zero => YES.
  40. #
  41. $dolib = 1;
  42.  
  43. # Should documentation be installed. 0 => NO, non-zero => YES.
  44. #
  45. $dodoc = 1;
  46.  
  47. # Location for executable.  If using ms-dos, use something like
  48. # 'C:\\BIN'.
  49. #
  50. $bindir  = '/usr/local/bin';
  51.  
  52. # Location for libraries.  If using ms-dos, use something like
  53. # 'C:\\LIB\\MHONARC'.
  54. #
  55. $libdir  = '/usr/local/lib/MHonArc';
  56.  
  57. # Location for documents.  If using ms-dos, use something like
  58. # 'C:\\DOC\\MHONARC'.
  59. #
  60. $docdir  = '/usr/local/lib/MHonArc/doc';
  61.  
  62. # Location of perl executable.  If using ms-dos, use something like
  63. # 'C:\\BIN\\PERL.EXE'.
  64. #
  65. $perlprg = '/usr/local/bin/perl';
  66.  
  67.  
  68. 1; # DO NOT DELETE THIS LINE
  69.